home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / fd / fdtofh.c < prev    next >
C/C++ Source or Header  |  1990-05-17  |  322b  |  27 lines

  1.  
  2. /*
  3.  *  FDTOFH.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <fcntl.h>
  10. #include <ioctl.h>
  11. #include <errno.h>
  12.  
  13. void *
  14. fdtofh(fd)
  15. int fd;
  16. {
  17.     _IOFDS *d;
  18.  
  19.     if (d = __getfh(fd)) {
  20.     if (d->fd_Exec)
  21.         return(NULL);
  22.     return((void *)d->fd_Fh);
  23.     }
  24.     return(NULL);
  25. }
  26.  
  27.